home *** CD-ROM | disk | FTP | other *** search
- PROGRAM FadeAway; { Cheesy demo of FADE.TPU }
-
- USES Fade; { You of course have to USE it! }
-
- BEGIN
- writeln ('Blah.... Blah blah blah blah....');
- writeln (' I''m just writing this in case there wasn''t anything on the');
- writeln (' screen previous to the FadeOut call. This is lame.. It''s');
- writeln (' almost to the point where the documentation is longer than');
- writeln (' the code itself... I bet it is.. Ah well.. l8r.');
- writeln;
- writeln ('Hit enter to see the screen fade out.');
- readln;
- FadeOut;
- ResetTextMode;
- writeln (' That was cool.');
- readln
- END.